home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Queries / PGetConvertTwips.h < prev    next >
C/C++ Source or Header  |  1996-07-12  |  662b  |  32 lines

  1. /*
  2.  *--- PGetConvertTwips.h --------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PGetConvertTwips__
  10. #define __PGetConvertTwips__
  11.  
  12. #include "PHandleQuery.h"
  13.  
  14. class PGetConvertTwips : public PHandleQuery
  15. {
  16.  
  17. public:
  18.  
  19.     PGetConvertTwips(long dTwips, short cMeasureUnits);
  20.     
  21.     operator const char *() { return replyPtr; }
  22.  
  23. private:
  24.  
  25.     PGetConvertTwips();
  26.  
  27. };
  28.  
  29. #endif
  30.  
  31. // end of PGetConvertTwips.h
  32.